Docs
get https://api.console.iugu.com/apps/{app_id}

App details

Returns data for an app based on the provided ID

Sem ações implementadas definidas

Request

Path variables

app_id

Required

Type: string

The unique identifier of the application

Ex: 4fHECmQtLdROI4fDLWMiLd

Response

200

Success

id
String

App identifier (unique app ID).

Ex: 3W3pZX7CxbPGjC8WDTmunA

name
String

App name.

Ex: First

service_api_url
String

The URL used to access the app's service API.

Ex: https://test.com

entitlements
Array

Enabled entitlements for the app.

Ex: ["activity_consumer", "workflow_provider", "embedding_provider"]

blocked
Boolean

Indicates if the app is blocked.

billable
Boolean

Indicates if the app is billable.

Example
1
2
3
4
5
6
7
8
9
10
11
12
{
  "id": "3W3pZX7CxbPGjC8WDTmunA",
  "name": "First",
  "service_api_url": "https://test.com",
  "entitlements": [
    "activity_consumer",
    "workflow_provider",
    "embedding_provider"
  ],
  "blocked": false,
  "billable": false
}

401

Unauthorized

error
String

Error type.

Ex: JWT::ExpiredSignature

error_description
String

Error description.

Ex: Signature has expired

Example
1
2
3
4
{
  "error": "JWT::ExpiredSignature",
  "error_description": "Signature has expired"
}

404

Not Found

status
String

Error description.

Ex: App Not Found

Example
1
2
3
{
  "status": "App Not Found"
}